home *** CD-ROM | disk | FTP | other *** search
/ PCNET 2006 September - Disc 3 / PCNET_CD_2006_09_3.iso / apps / Install_Babya_Logic.exe / {app} / samples / Fad out effect.msc < prev    next >
Encoding:
Text File  |  1999-07-27  |  368 b   |  26 lines

  1. MScript VER:1
  2. TIMER:60
  3.  
  4. TuneStart:Main
  5. --Just an experiment done using NOTE_ON and NOTE_OFF commands. 
  6. --But it was indeed hard to do this!!
  7.  
  8. INSTRUMENT:String_Ensemble_2 
  9.  
  10. SET:VolumeNum,30
  11.  
  12. LABEL:TOP
  13.  
  14. VOLUME:VolumeNum
  15. NOTE_ON:a#
  16. MATH:VolumeNum,+=,5
  17. SILENCE:1
  18. if:VolumeNum,>=,100,BOTTOM,TOP
  19.  
  20. LABEL:BOTTOM
  21.  
  22. SILENCE:20
  23. NOTE_OFF:a#
  24.  
  25. TuneEnd:Main
  26.